home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 43 / Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso / -serious- / hardware / adflib / adflibppc / lib / adf_dump.h < prev    next >
C/C++ Source or Header  |  1999-06-14  |  668b  |  23 lines

  1. #ifndef ADF_DUMP_H
  2. #define ADF_DUMP_H 1
  3.  
  4. /*
  5.  *  ADF Library. (C) 1997-1998 Laurent Clevy
  6.  *
  7.  *  adf_dump.h
  8.  *
  9.  *  
  10.  */
  11.  
  12. PREFIX     struct Device*
  13. adfCreateDumpDevice(char* filename, long cyl, long heads, long sec);
  14. PREFIX RETCODE adfCreateHdFile(struct Device* dev, char* volName, int volType);
  15. BOOL adfInitDumpDevice(struct Device* dev, char* name);
  16. BOOL adfReadDumpSector(struct Device *dev, long n, int size, unsigned char* buf);
  17. BOOL adfWriteDumpSector(struct Device *dev, long n, int size, unsigned char* buf);
  18. void adfReleaseDumpDevice(struct Device *dev);
  19.  
  20.  
  21. #endif /* ADF_DUMP_H */
  22. /*##########################################################################*/
  23.